home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Bytes: Money & Finance
/
PowerBytes Money and Finance CD-ROM 01
/
PowerBytes Money and Finance CD-ROM 01.iso
/
Demos
/
TrueBASIC Demo
/
User's Guide
/
Dots
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1985-10-03
|
156 b
|
10 lines
|
[
TEXT/TRUE
]
! Plot random points.
!
DO
LET x = Rnd ! Pick two random numbers
LET y = Rnd
PLOT x,y ! Plot a point at the random spot
LOOP
END